home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 June / PCWorld_2007-06_cd.bin / zabezpeceni / spyeraser / spyeraser.exe / {app} / SpyEraser.dll / 2110 / SETUP.JS < prev    next >
Text File  |  2007-04-23  |  3KB  |  44 lines

  1. /*
  2. USAGE
  3. =====
  4. MENUNAME = new menuSys(left, top, cellWidth, cellHeight, menuXOffset, menuYOffset, borderWidth, borderColour, bgColourOff, bgColourOn, subMenuPic (RIGHT), subMenuPic (DOWN), subMenuPic (RIGHT-MOUSEOVER), subMenuPic (DOWN-MOUSEOVER), direction, rememberHilight);
  5.  
  6. MENUNAME.addCell('CELL TEXT', 'ACTION', 'DESCRIPTION');
  7. OR
  8. MENUNAME.addCell('CELL TEXT', 'ACTION', 'DESCRIPTION', 'SUBMENUNAME', SHOW_ARROW); to create a submenu
  9. SHOW_ARROW = true / false - default = true
  10. */
  11.  
  12. myMenu1 = new menuSys(5, 30, 150, 18, 0, 0, 1, 'black', 'menuOff', 'menuOn', '#FFFFFF', '#CCE0FA',  'submenu.gif', 'submenud.gif', 'submenuonwhite.gif', 'submenudon.gif', 1, true);
  13. myMenu2 = new menuSys(60, 30, 150, 18, 0, 0, 1, 'black', 'menuOff', 'menuOn', '#FFFFFF', '#CCE0FA',  'submenu.gif', 'submenud.gif', 'submenuonwhite.gif', 'submenudon.gif', 1, true);
  14. myMenu3 = new menuSys(130, 30, 180, 18, 0, 0, 1, 'black', 'menuOff', 'menuOn', '#FFFFFF', '#CCE0FA',  'submenu.gif', 'submenud.gif', 'submenuonwhite.gif', 'submenudon.gif', 1, true);
  15. myMenu4 = new menuSys(5, 30, 180, 18, 0, 0, 1, 'black', 'menuOff', 'menuOn', '#FFFFFF', '#CCE0FA',  'submenu.gif', 'submenud.gif', 'submenuonwhite.gif', 'submenudon.gif', 1, true);
  16.  
  17. myMenu1.addCell(' <font color=#1F3A7D>Check for Updates</font>','showUpdatesPage();');
  18. myMenu1.addCell(' <font color=#1F3A7D>Shutdown','shutdown();');
  19.  
  20. myMenu2.addCell(' <font color=#1F3A7D>Settings','showSettingsPage();');
  21. myMenu2.addCell(' <font color=#1F3A7D>Schedule Scan','showSchedulePage();');
  22.  
  23.  
  24. myMenu3.addCell(' <font color=#1F3A7D>Summary','showSummaryPage();');
  25. myMenu3.addCell(' <font color=#1F3A7D>Spyware Scan','showStartScanPage();','','spywarescan',false);
  26. myMenu3.addCell(' <font color=#1F3A7D>Real-Time Protection','showRealTimePage();','','realtime',false);
  27.  
  28. myMenu3.spywarescan.addCell(' <font color=#1F3A7D>Last Scan Results','showScanResultsPage();');
  29. myMenu3.spywarescan.addCell(' <font color=#1F3A7D>Scan History','showScanHistoryPage();');
  30. myMenu3.spywarescan.addCell(' <font color=#1F3A7D>Quarantined Spyware','showQuarantinePage();');
  31. myMenu3.spywarescan.addCell(' <font color=#1F3A7D>Ignored Spyware','showIgnoreListPage();');
  32.  
  33.  
  34. myMenu3.realtime.addCell(' <font color=#1F3A7D>Internet Guards','showRTInternetMonitorsPage();');
  35. myMenu3.realtime.addCell(' <font color=#1F3A7D>System Guards','showRTSystemMonitorsPage();');
  36. myMenu3.realtime.addCell(' <font color=#1F3A7D>Application Guards','showRTApplicationMinitorsPage();');
  37. myMenu3.realtime.addCell(' <font color=#1F3A7D>Blocked Events','showRTViewBlockedEventsPage();');
  38. myMenu3.realtime.addCell(' <font color=#1F3A7D>Allowed Events','showRTViewAllEventsPage();');
  39.  
  40. myMenu4.addCell(' <font color=#1F3A7D>About SpyEraser','showAboutPage();');
  41. //myMenu4.addCell(' Online Help');
  42. myMenu4.addCell(' <font color=#1F3A7D>Suspect Spyware report','showSuspectDialog();');
  43.  
  44.